home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / df.dir / 00260_tabletiles.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  372 b   |  25 lines

  1. on mouseDown
  2.   if the clickOn < 21 then
  3.     exit
  4.   end if
  5.   if the controlDown then
  6.     exit
  7.   end if
  8.   set yu to the clickOn - 20
  9.   initsel()
  10.   setAt(selected, yu, 1)
  11.   put "just above setbar in tabletiles"
  12.   setbar()
  13. end
  14.  
  15. on mouseUp
  16.   if the clickOn < 21 then
  17.     exit
  18.   end if
  19.   if the controlDown then
  20.     playmovn()
  21.   else
  22.     set yu to the clickOn - 20
  23.   end if
  24. end
  25.